home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000176_news@columbia.edu _Thu Apr 6 12:05:46 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA11715
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 6 Apr 2000 12:05:46 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id LAA17356
  7.     for kermit.misc@watsun.cc.columbia.edu; Thu, 6 Apr 2000 11:57:45 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: .kermrc initialization file
  11. Date: 6 Apr 2000 15:57:43 GMT
  12. Organization: Columbia University
  13. Message-ID: <8cic5n$gu9$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <1Z1H4.91$Td7.9173@sapphire.mtt.net>, Grant <1@2.3> wrote:
  17. : I have installed Kermit 7.0.196 (binary) on my SCO OpenServer 5.0.5 server.
  18. : Upon testing and check columbia's website, I have discovered that I require
  19. : .kermrc within everyone's home directory.  How can I work around this so
  20. : that I only have one global .kermrc other than the fact of compiling source
  21. : version to reflect this change?
  22. The .kermrc file is not required unless you want everybody to have dialing
  23. directories and services directories, etc, set up.  Since most people don't
  24. use these, forcing them to execute the rather lengthy standard .kermrc file
  25. subjects them to an annoying delay and a number of extraneous messages.
  26.  
  27. The setup I would recommend instead is to install a copy of the standard
  28. initialization file in the same directory as the Kermit executable, e.g.
  29.  
  30.   /usr/local/bin/kermit
  31.   /usr/local/bin/kermrc
  32.  
  33. Give it the same owner, group, and permissions as Kermit itself, and change
  34. the top line from:
  35.  
  36.   #!/usr/local/bin/kermit
  37.  
  38. to reflect the actual path of the Kermit executable if it is not the one
  39. shown.
  40.  
  41. Then when users type "kermit", they get bare Kermit, and it starts quickly.
  42. When they type "kermrc" they get Kermit with all the dialing and services
  43. directories defined.
  44.  
  45. - Frank